home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / include / arpa / inet.h < prev    next >
C/C++ Source or Header  |  1988-10-23  |  451b  |  22 lines

  1. /*
  2.  * Copyright (c) 1983 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  *
  6.  *    @(#)inet.h    5.1 (Berkeley) 5/30/85
  7.  */
  8.  
  9. #ifndef _INET
  10. #define _INET
  11.  
  12. /*
  13.  * External definitions for
  14.  * functions in inet(3N)
  15.  */
  16. unsigned long inet_addr();
  17. char    *inet_ntoa();
  18. struct    in_addr inet_makeaddr();
  19. unsigned long inet_network();
  20.  
  21. #endif /* _INET */
  22.